style.scss 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .GoogleCom {
  2. background-color: #1f1f1f;
  3. padding: .72rem .18rem 0;
  4. -webkit-box-sizing: border-box;
  5. box-sizing: border-box;
  6. .title {
  7. font-size: .16rem;
  8. h2 {
  9. color: #ff6a01;
  10. text-align: center;
  11. font-weight: bold;
  12. }
  13. }
  14. .otherAccount {
  15. margin: .2rem 0 .1rem;
  16. .ggAfb {
  17. display: flex;
  18. -webkit-box-pack: center;
  19. -ms-flex-pack: center;
  20. justify-content: center;
  21. span {
  22. display: flex;
  23. -webkit-box-pack: center;
  24. -ms-flex-pack: center;
  25. justify-content: center;
  26. -webkit-box-align: center;
  27. -ms-flex-align: center;
  28. align-items: center;
  29. width: 67%;
  30. border-radius: .04rem;
  31. height: .42rem;
  32. color: #fff;
  33. font-size: .1rem;
  34. -webkit-box-sizing: border-box;
  35. box-sizing: border-box;
  36. &.gg {
  37. background-color: #06b594;
  38. }
  39. i {
  40. width: .26rem;
  41. height: .26rem;
  42. margin-right: .13rem;
  43. background-image: url('/svg/gg.svg');
  44. background-size: 100% 100%;
  45. }
  46. }
  47. }
  48. .or {
  49. display: -webkit-box;
  50. display: -ms-flexbox;
  51. display: flex;
  52. -webkit-box-pack: justify;
  53. -ms-flex-pack: justify;
  54. justify-content: space-between;
  55. -webkit-box-align: center;
  56. -ms-flex-align: center;
  57. align-items: center;
  58. -ms-flex-wrap: nowrap;
  59. flex-wrap: nowrap;
  60. margin-top: .16rem;
  61. span {
  62. display: block;
  63. margin: 0 .03rem;
  64. font-size: .12rem;
  65. color: #ddd;
  66. }
  67. &:after,&:before {
  68. content: "";
  69. display: block;
  70. width: 100%;
  71. height: 0;
  72. border-top: .01rem solid #666;
  73. }
  74. }
  75. }
  76. }